auto merge of #586 : alexcrichton/cargo/fix-win64, r=brson
authorbors <bors@rust-lang.org>
Wed, 17 Sep 2014 17:43:29 +0000 (17:43 +0000)
committerbors <bors@rust-lang.org>
Wed, 17 Sep 2014 17:43:29 +0000 (17:43 +0000)
commitb86ae44422789e45ae85bfbf3cd38c3c68fc76e0
treec0034754e9004192b348d81c7a6f01c29ac53d46
parentbec5fef493a27e8b6a3193c77c6f71fc421b3972
parent3b0cf780b4527f0973a45e2f3f1a8dda8d1e61ef
auto merge of #586 : alexcrichton/cargo/fix-win64, r=brson

Right now the win64 snapshot builders are failing to produce a snapshot, and
I've managed to track it down to a path length issue. Windows paths have a
maximum of 260 characters, and the characters add up pretty fast for a path
like:

    c:\bot\slave\cargo-nightly-win-64
      \build\target\x86_64-w64-mingw32
      \cargo-integration-test\home\.cargo
      \git\checkouts\meta-dep-<hash>\
      \$SHA\.git\...

The normal builders aren't failing I presume because `cargo-nightly-win-64` is
longer than `cargo-win64-64` (we must be *right up* against the limit). I've
confirmed that this shortening fixes the tests on the bots.